home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Python / pythonrun.c < prev    next >
C/C++ Source or Header  |  1998-06-25  |  26KB  |  1,177 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Python interpreter top-level routines, including init/exit */
  33.  
  34. #include "Python.h"
  35.  
  36. #include "grammar.h"
  37. #include "node.h"
  38. #include "parsetok.h"
  39. #include "errcode.h"
  40. #include "compile.h"
  41. #include "eval.h"
  42. #include "marshal.h"
  43.  
  44. #ifdef _AMIGA
  45. #undef BYTE
  46. #include <exec/types.h>
  47. #endif
  48.  
  49. #ifdef HAVE_UNISTD_H
  50. #include <unistd.h>
  51. #endif
  52.  
  53. #ifdef HAVE_SIGNAL_H
  54. #include <signal.h>
  55. #endif
  56.  
  57. #ifdef MS_WIN32
  58. #undef BYTE
  59. #include "windows.h"
  60. #endif
  61.  
  62. extern char *Py_GetPath();
  63.  
  64. extern grammar _PyParser_Grammar; /* From graminit.c */
  65.  
  66. /* Forward */
  67. static void initmain Py_PROTO((void));
  68. static void initsite Py_PROTO((void));
  69. static PyObject *run_err_node Py_PROTO((node *n, char *filename,
  70.                    PyObject *globals, PyObject *locals));
  71. static PyObject *run_node Py_PROTO((node *n, char *filename,
  72.                    PyObject *globals, PyObject *locals));
  73. static PyObject *run_pyc_file Py_PROTO((FILE *fp, char *filename,
  74.                    PyObject *globals, PyObject *locals));
  75. static void err_input Py_PROTO((perrdetail *));
  76. static void initsigs Py_PROTO((void));
  77. static void call_sys_exitfunc Py_PROTO((void));
  78. static void call_ll_exitfuncs Py_PROTO((void));
  79. static int parse_syntax_error Py_PROTO((PyObject *err,
  80.     PyObject **message, char **filename, int *lineno, int *offset, char **text));
  81.  
  82. int Py_DebugFlag; /* Needed by parser.c */
  83. int Py_VerboseFlag; /* Needed by import.c */
  84. int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
  85. int Py_NoSiteFlag; /* Suppress 'import site' */
  86. int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c */
  87. int Py_FrozenFlag; /* Needed by getpath.c */
  88.  
  89. static int initialized = 0;
  90.  
  91. /* API to access the initialized flag -- useful for eroteric use */
  92.  
  93. int
  94. Py_IsInitialized()
  95. {
  96.     return initialized;
  97. }
  98.  
  99. /* Global initializations.  Can be undone by Py_Finalize().  Don't
  100.    call this twice without an intervening Py_Finalize() call.  When
  101.    initializations fail, a fatal error is issued and the function does
  102.    not return.  On return, the first thread and interpreter state have
  103.    been created.
  104.  
  105.    Locking: you must hold the interpreter lock while calling this.
  106.    (If the lock has not yet been initialized, that's equivalent to
  107.    having the lock, but you cannot use multiple threads.)
  108.  
  109. */
  110.  
  111. void
  112. Py_Initialize()
  113. {
  114.     PyInterpreterState *interp;
  115.     PyThreadState *tstate;
  116.     PyObject *bimod, *sysmod;
  117.     char *p;
  118.  
  119.     if (initialized)
  120.         return;
  121.     initialized = 1;
  122.     
  123.     if ((p = getenv("PYTHONDEBUG")) && *p != '\0')
  124.         Py_DebugFlag = 1;
  125.     if ((p = getenv("PYTHONVERBOSE")) && *p != '\0')
  126.         Py_VerboseFlag = 1;
  127.  
  128.     interp = PyInterpreterState_New();
  129.     if (interp == NULL)
  130.         Py_FatalError("Py_Initialize: can't make first interpreter");
  131.  
  132.     tstate = PyThreadState_New(interp);
  133.     if (tstate == NULL)
  134.         Py_FatalError("Py_Initialize: can't make first thread");
  135.     (void) PyThreadState_Swap(tstate);
  136.  
  137.     interp->modules = PyDict_New();
  138.     if (interp->modules == NULL)
  139.         Py_FatalError("Py_Initialize: can't make modules dictionary");
  140.  
  141.     bimod = _PyBuiltin_Init_1();
  142.     if (bimod == NULL)
  143.         Py_FatalError("Py_Initialize: can't initialize __builtin__");
  144.     interp->builtins = PyModule_GetDict(bimod);
  145.     Py_INCREF(interp->builtins);
  146.  
  147.     sysmod = _PySys_Init();
  148.     if (sysmod == NULL)
  149.         Py_FatalError("Py_Initialize: can't initialize sys");
  150.     interp->sysdict = PyModule_GetDict(sysmod);
  151.     Py_INCREF(interp->sysdict);
  152.     _PyImport_FixupExtension("sys", "sys");
  153.     PySys_SetPath(Py_GetPath());
  154.     PyDict_SetItemString(interp->sysdict, "modules",
  155.                  interp->modules);
  156.  
  157.     /* phase 2 of builtins */
  158.     _PyBuiltin_Init_2(interp->builtins);
  159.     _PyImport_FixupExtension("__builtin__", "__builtin__");
  160.  
  161.     _PyImport_Init();
  162.  
  163.     initsigs(); /* Signal handling stuff, including initintr() */
  164.  
  165.     initmain(); /* Module __main__ */
  166.     if (!Py_NoSiteFlag)
  167.         initsite(); /* Module site */
  168. }
  169.  
  170. /* Undo the effect of Py_Initialize().
  171.  
  172.    Beware: if multiple interpreter and/or thread states exist, these
  173.    are not wiped out; only the current thread and interpreter state
  174.    are deleted.  But since everything else is deleted, those other
  175.    interpreter and thread states should no longer be used.
  176.  
  177.    (XXX We should do better, e.g. wipe out all interpreters and
  178.    threads.)
  179.  
  180.    Locking: as above.
  181.  
  182. */
  183.  
  184. void
  185. Py_Finalize()
  186. {
  187.     PyInterpreterState *interp;
  188.     PyThreadState *tstate;
  189.  
  190.     if (!initialized)
  191.         return;
  192.     initialized = 0;
  193.  
  194.     call_sys_exitfunc();
  195.  
  196.     /* Get current thread state and interpreter pointer */
  197.     tstate = PyThreadState_Get();
  198.     interp = tstate->interp;
  199.  
  200.     /* Disable signal handling */
  201.     PyOS_FiniInterrupts();
  202.  
  203.     /* Destroy PyExc_MemoryErrorInst */
  204.     _PyBuiltin_Fini_1();
  205.  
  206.     /* Destroy all modules */
  207.     PyImport_Cleanup();
  208.  
  209.     /* Destroy the database used by _PyImport_{Fixup,Find}Extension */
  210.     _PyImport_Fini();
  211.  
  212.     /* Debugging stuff */
  213. #ifdef COUNT_ALLOCS
  214.     dump_counts();
  215. #endif
  216.  
  217. #ifdef Py_REF_DEBUG
  218.     fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
  219. #endif
  220.  
  221. #ifdef Py_TRACE_REFS
  222.     if (_Py_AskYesNo("Print left references?")) {
  223.         _Py_PrintReferences(stderr);
  224.     }
  225. #endif /* Py_TRACE_REFS */
  226.  
  227.     /* Delete current thread */
  228.     PyInterpreterState_Clear(interp);
  229.     PyThreadState_Swap(NULL);
  230.     PyInterpreterState_Delete(interp);
  231.  
  232.     /* Now we decref the exception classes.  After this point nothing
  233.        can raise an exception.  That's okay, because each Fini() method
  234.        below has been checked to make sure no exceptions are ever
  235.        raised.
  236.     */
  237.     _PyBuiltin_Fini_2();
  238.     PyMethod_Fini();
  239.     PyFrame_Fini();
  240.     PyCFunction_Fini();
  241.     PyTuple_Fini();
  242.     PyString_Fini();
  243.     PyInt_Fini();
  244.     PyFloat_Fini();
  245.  
  246.     /* XXX Still allocated:
  247.        - various static ad-hoc pointers to interned strings
  248.        - int and float free list blocks
  249.        - whatever various modules and libraries allocate
  250.     */
  251.  
  252.     PyGrammar_RemoveAccelerators(&_PyParser_Grammar);
  253.  
  254.     call_ll_exitfuncs();
  255.  
  256. #ifdef Py_TRACE_REFS
  257.     _Py_ResetReferences();
  258. #endif /* Py_TRACE_REFS */
  259. }
  260.  
  261. /* Create and initialize a new interpreter and thread, and return the
  262.    new thread.  This requires that Py_Initialize() has been called
  263.    first.
  264.  
  265.    Unsuccessful initialization yields a NULL pointer.  Note that *no*
  266.    exception information is available even in this case -- the
  267.    exception information is held in the thread, and there is no
  268.    thread.
  269.  
  270.    Locking: as above.
  271.  
  272. */
  273.  
  274. PyThreadState *
  275. Py_NewInterpreter()
  276. {
  277.     PyInterpreterState *interp;
  278.     PyThreadState *tstate, *save_tstate;
  279.     PyObject *bimod, *sysmod;
  280.  
  281.     if (!initialized)
  282.         Py_FatalError("Py_NewInterpreter: call Py_Initialize first");
  283.  
  284.     interp = PyInterpreterState_New();
  285.     if (interp == NULL)
  286.         return NULL;
  287.  
  288.     tstate = PyThreadState_New(interp);
  289.     if (tstate == NULL) {
  290.         PyInterpreterState_Delete(interp);
  291.         return NULL;
  292.     }
  293.  
  294.     save_tstate = PyThreadState_Swap(tstate);
  295.  
  296.     /* XXX The following is lax in error checking */
  297.  
  298.     interp->modules = PyDict_New();
  299.  
  300.     bimod = _PyImport_FindExtension("__builtin__", "__builtin__");
  301.     if (bimod != NULL) {
  302.         interp->builtins = PyModule_GetDict(bimod);
  303.         Py_INCREF(interp->builtins);
  304.     }
  305.     sysmod = _PyImport_FindExtension("sys", "sys");
  306.     if (bimod != NULL && sysmod != NULL) {
  307.         interp->sysdict = PyModule_GetDict(sysmod);
  308.         Py_INCREF(interp->sysdict);
  309.         PySys_SetPath(Py_GetPath());
  310.         PyDict_SetItemString(interp->sysdict, "modules",
  311.                      interp->modules);
  312.         initmain();
  313.         if (!Py_NoSiteFlag)
  314.             initsite();
  315.     }
  316.  
  317.     if (!PyErr_Occurred())
  318.         return tstate;
  319.  
  320.     /* Oops, it didn't work.  Undo it all. */
  321.  
  322.     PyErr_Print();
  323.     PyThreadState_Clear(tstate);
  324.     PyThreadState_Swap(save_tstate);
  325.     PyThreadState_Delete(tstate);
  326.     PyInterpreterState_Delete(interp);
  327.  
  328.     return NULL;
  329. }
  330.  
  331. /* Delete an interpreter and its last thread.  This requires that the
  332.    given thread state is current, that the thread has no remaining
  333.    frames, and that it is its interpreter's only remaining thread.
  334.    It is a fatal error to violate these constraints.
  335.  
  336.    (Py_Finalize() doesn't have these constraints -- it zaps
  337.    everything, regardless.)
  338.  
  339.    Locking: as above.
  340.  
  341. */
  342.  
  343. void
  344. Py_EndInterpreter(tstate)
  345.     PyThreadState *tstate;
  346. {
  347.     PyInterpreterState *interp = tstate->interp;
  348.  
  349.     if (tstate != PyThreadState_Get())
  350.         Py_FatalError("Py_EndInterpreter: thread is not current");
  351.     if (tstate->frame != NULL)
  352.         Py_FatalError("Py_EndInterpreter: thread still has a frame");
  353.     if (tstate != interp->tstate_head || tstate->next != NULL)
  354.         Py_FatalError("Py_EndInterpreter: not the last thread");
  355.  
  356.     PyImport_Cleanup();
  357.     PyInterpreterState_Clear(interp);
  358.     PyThreadState_Swap(NULL);
  359.     PyInterpreterState_Delete(interp);
  360. }
  361.  
  362. static char *progname = "python";
  363.  
  364. void
  365. Py_SetProgramName(pn)
  366.     char *pn;
  367. {
  368.     if (pn && *pn)
  369.         progname = pn;
  370. }
  371.  
  372. char *
  373. Py_GetProgramName()
  374. {
  375.     return progname;
  376. }
  377.  
  378. static char *default_home = NULL;
  379.  
  380. void
  381. Py_SetPythonHome(home)
  382.     char *home;
  383. {
  384.     default_home = home;
  385. }
  386.  
  387. char *
  388. Py_GetPythonHome()
  389. {
  390.     char *home = default_home;
  391.     if (home == NULL)
  392.         home = getenv("PYTHONHOME");
  393.     return home;
  394. }
  395.  
  396. /* Create __main__ module */
  397.  
  398. static void
  399. initmain()
  400. {
  401.     PyObject *m, *d;
  402.     m = PyImport_AddModule("__main__");
  403.     if (m == NULL)
  404.         Py_FatalError("can't create __main__ module");
  405.     d = PyModule_GetDict(m);
  406.     if (PyDict_GetItemString(d, "__builtins__") == NULL) {
  407.         PyObject *bimod = PyImport_ImportModule("__builtin__");
  408.         if (bimod == NULL ||
  409.             PyDict_SetItemString(d, "__builtins__", bimod) != 0)
  410.             Py_FatalError("can't add __builtins__ to __main__");
  411.     }
  412. }
  413.  
  414. /* Import the site module (not into __main__ though) */
  415.  
  416. static void
  417. initsite()
  418. {
  419.     PyObject *m, *f;
  420.     m = PyImport_ImportModule("site");
  421.     if (m == NULL) {
  422.         f = PySys_GetObject("stderr");
  423.         if (Py_VerboseFlag) {
  424.             PyFile_WriteString(
  425.                 "'import site' failed; traceback:\n", f);
  426.             PyErr_Print();
  427.         }
  428.         else {
  429.             PyFile_WriteString(
  430.               "'import site' failed; use -v for traceback\n", f);
  431.             PyErr_Clear();
  432.         }
  433.     }
  434.     else {
  435.         Py_DECREF(m);
  436.     }
  437. }
  438.  
  439. /* Parse input from a file and execute it */
  440.  
  441. int
  442. PyRun_AnyFile(fp, filename)
  443.     FILE *fp;
  444.     char *filename;
  445. {
  446.     if (filename == NULL)
  447.         filename = "???";
  448.     if (Py_FdIsInteractive(fp, filename))
  449.         return PyRun_InteractiveLoop(fp, filename);
  450.     else
  451.         return PyRun_SimpleFile(fp, filename);
  452. }
  453.  
  454. int
  455. PyRun_InteractiveLoop(fp, filename)
  456.     FILE *fp;
  457.     char *filename;
  458. {
  459.     PyObject *v;
  460.     int ret;
  461.     v = PySys_GetObject("ps1");
  462.     if (v == NULL) {
  463.         PySys_SetObject("ps1", v = PyString_FromString(">>> "));
  464.         Py_XDECREF(v);
  465.     }
  466.     v = PySys_GetObject("ps2");
  467.     if (v == NULL) {
  468.         PySys_SetObject("ps2", v = PyString_FromString("... "));
  469.         Py_XDECREF(v);
  470.     }
  471.     for (;;) {
  472.         ret = PyRun_InteractiveOne(fp, filename);
  473. #ifdef Py_REF_DEBUG
  474.         fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
  475. #endif
  476.         if (ret == E_EOF)
  477.             return 0;
  478.         /*
  479.         if (ret == E_NOMEM)
  480.             return -1;
  481.         */
  482.     }
  483. }
  484.  
  485. int
  486. PyRun_InteractiveOne(fp, filename)
  487.     FILE *fp;
  488.     char *filename;
  489. {
  490.     PyObject *m, *d, *v, *w;
  491.     node *n;
  492.     perrdetail err;
  493.     char *ps1 = "", *ps2 = "";
  494.     v = PySys_GetObject("ps1");
  495.     if (v != NULL) {
  496.         v = PyObject_Str(v);
  497.         if (v == NULL)
  498.             PyErr_Clear();
  499.         else if (PyString_Check(v))
  500.             ps1 = PyString_AsString(v);
  501.     }
  502.     w = PySys_GetObject("ps2");
  503.     if (w != NULL) {
  504.         w = PyObject_Str(w);
  505.         if (w == NULL)
  506.             PyErr_Clear();
  507.         else if (PyString_Check(w))
  508.             ps2 = PyString_AsString(w);
  509.     }
  510.     Py_BEGIN_ALLOW_THREADS
  511.     n = PyParser_ParseFile(fp, filename, &_PyParser_Grammar,
  512.                    Py_single_input, ps1, ps2, &err);
  513.     Py_END_ALLOW_THREADS
  514.     Py_XDECREF(v);
  515.     Py_XDECREF(w);
  516.     if (n == NULL) {
  517.         if (err.error == E_EOF) {
  518.             if (err.text)
  519.             {
  520.                 free(err.text);
  521.                 err.text=NULL;    /* XXX I.J. */
  522.             }
  523.             return E_EOF;
  524.         }
  525.         err_input(&err);
  526.         PyErr_Print();
  527.         return err.error;
  528.     }
  529.     m = PyImport_AddModule("__main__");
  530.     if (m == NULL)
  531.         return -1;
  532.     d = PyModule_GetDict(m);
  533.     v = run_node(n, filename, d, d);
  534.     if (v == NULL) {
  535.         PyErr_Print();
  536.         return -1;
  537.     }
  538.     Py_DECREF(v);
  539.     if (Py_FlushLine())
  540.         PyErr_Clear();
  541.     return 0;
  542. }
  543.  
  544. int
  545. PyRun_SimpleFile(fp, filename)
  546.     FILE *fp;
  547.     char *filename;
  548. {
  549.     PyObject *m, *d, *v;
  550.     char *ext;
  551.  
  552.     m = PyImport_AddModule("__main__");
  553.     if (m == NULL)
  554.         return -1;
  555.     d = PyModule_GetDict(m);
  556.     ext = filename + strlen(filename) - 4;
  557. #ifdef _AMIGA
  558.     /* on Amiga, filenames are case insensitive */
  559.     if (stricmp(ext, ".pyc") == 0 || stricmp(ext, ".pyo") == 0
  560. #else
  561.     if (strcmp(ext, ".pyc") == 0 || strcmp(ext, ".pyo") == 0
  562. #endif /* _AMIGA */
  563. #ifdef macintosh
  564.     /* On a mac, we also assume a pyc file for types 'PYC ' and 'APPL' */
  565.         || getfiletype(filename) == 'PYC '
  566.         || getfiletype(filename) == 'APPL'
  567. #endif /* macintosh */
  568.         ) {
  569.         /* Try to run a pyc file. First, re-open in binary */
  570.         /* Don't close, done in main: fclose(fp); */
  571.         if( (fp = fopen(filename, "rb")) == NULL ) {
  572.             fprintf(stderr, "python: Can't reopen .pyc file\n");
  573.             return -1;
  574.         }
  575.         /* Turn on optimization if a .pyo file is given */
  576.         if (strcmp(ext, ".pyo") == 0)
  577.             Py_OptimizeFlag = 1;
  578.         v = run_pyc_file(fp, filename, d, d);
  579.     } else {
  580.         v = PyRun_File(fp, filename, Py_file_input, d, d);
  581.     }
  582.     if (v == NULL) {
  583.         PyErr_Print();
  584.         return -1;
  585.     }
  586.     Py_DECREF(v);
  587.     if (Py_FlushLine())
  588.         PyErr_Clear();
  589.     return 0;
  590. }
  591.  
  592. int
  593. PyRun_SimpleString(command)
  594.     char *command;
  595. {
  596.     PyObject *m, *d, *v;
  597.     m = PyImport_AddModule("__main__");
  598.     if (m == NULL)
  599.         return -1;
  600.     d = PyModule_GetDict(m);
  601.     v = PyRun_String(command, Py_file_input, d, d);
  602.     if (v == NULL) {
  603.         PyErr_Print();
  604.         return -1;
  605.     }
  606.     Py_DECREF(v);
  607.     if (Py_FlushLine())
  608.         PyErr_Clear();
  609.     return 0;
  610. }
  611.  
  612. static int
  613. parse_syntax_error(err, message, filename, lineno, offset, text)
  614.      PyObject* err;
  615.      PyObject** message;
  616.      char** filename;
  617.      int* lineno;
  618.      int* offset;
  619.      char** text;
  620. {
  621.     long hold;
  622.     PyObject *v;
  623.  
  624.     /* old style errors */
  625.     if (PyTuple_Check(err))
  626.         return PyArg_Parse(err, "(O(ziiz))", message, filename,
  627.                    lineno, offset, text);
  628.  
  629.     /* new style errors.  `err' is an instance */
  630.  
  631.     if (! (v = PyObject_GetAttrString(err, "msg")))
  632.         goto finally;
  633.     *message = v;
  634.  
  635.     if (!(v = PyObject_GetAttrString(err, "filename")))
  636.         goto finally;
  637.     if (v == Py_None)
  638.         *filename = NULL;
  639.     else if (! (*filename = PyString_AsString(v)))
  640.         goto finally;
  641.  
  642.     Py_DECREF(v);
  643.     if (!(v = PyObject_GetAttrString(err, "lineno")))
  644.         goto finally;
  645.     hold = PyInt_AsLong(v);
  646.     Py_DECREF(v);
  647.     v = NULL;
  648.     if (hold < 0 && PyErr_Occurred())
  649.         goto finally;
  650.     *lineno = (int)hold;
  651.  
  652.     if (!(v = PyObject_GetAttrString(err, "offset")))
  653.         goto finally;
  654.     hold = PyInt_AsLong(v);
  655.     Py_DECREF(v);
  656.     v = NULL;
  657.     if (hold < 0 && PyErr_Occurred())
  658.         goto finally;
  659.     *offset = (int)hold;
  660.  
  661.     if (!(v = PyObject_GetAttrString(err, "text")))
  662.         goto finally;
  663.     if (v == Py_None)
  664.         *text = NULL;
  665.     else if (! (*text = PyString_AsString(v)))
  666.         goto finally;
  667.     Py_DECREF(v);
  668.     return 1;
  669.  
  670. finally:
  671.     Py_XDECREF(v);
  672.     return 0;
  673. }
  674.  
  675. void
  676. PyErr_Print()
  677. {
  678.     PyErr_PrintEx(1);
  679. }
  680.  
  681. void
  682. PyErr_PrintEx(set_sys_last_vars)
  683.     int set_sys_last_vars;
  684. {
  685.     int err = 0;
  686.     PyObject *exception, *v, *tb, *f;
  687.     PyErr_Fetch(&exception, &v, &tb);
  688.     PyErr_NormalizeException(&exception, &v, &tb);
  689.  
  690.     if (exception == NULL)
  691.         return;
  692.  
  693.     if (PyErr_GivenExceptionMatches(exception, PyExc_SystemExit)) {
  694.         if (Py_FlushLine())
  695.             PyErr_Clear();
  696.         fflush(stdout);
  697.         if (v == NULL || v == Py_None)
  698.             Py_Exit(0);
  699.         if (PyInstance_Check(v)) {
  700.             /* we expect the error code to be store in the
  701.                `code' attribute
  702.             */
  703.             PyObject *code = PyObject_GetAttrString(v, "code");
  704.             if (code) {
  705.                 Py_DECREF(v);
  706.                 v = code;
  707.                 if (v == Py_None)
  708.                     Py_Exit(0);
  709.             }
  710.             /* if we failed to dig out the "code" attribute,
  711.                then just let the else clause below print the
  712.                error
  713.             */
  714.         }
  715.         if (PyInt_Check(v))
  716.             Py_Exit((int)PyInt_AsLong(v));
  717.         else {
  718.             /* OK to use real stderr here */
  719.             PyObject_Print(v, stderr, Py_PRINT_RAW);
  720.             fprintf(stderr, "\n");
  721.             Py_Exit(1);
  722.         }
  723.     }
  724.     if (set_sys_last_vars) {
  725.         PySys_SetObject("last_type", exception);
  726.         PySys_SetObject("last_value", v);
  727.         PySys_SetObject("last_traceback", tb);
  728.     }
  729.     f = PySys_GetObject("stderr");
  730.     if (f == NULL)
  731.         fprintf(stderr, "lost sys.stderr\n");
  732.     else {
  733.         if (Py_FlushLine())
  734.             PyErr_Clear();
  735.         fflush(stdout);
  736.         err = PyTraceBack_Print(tb, f);
  737.         if (err == 0 &&
  738.             PyErr_GivenExceptionMatches(exception, PyExc_SyntaxError))
  739.         {
  740.             PyObject *message;
  741.             char *filename, *text;
  742.             int lineno, offset;
  743.             if (!parse_syntax_error(v, &message, &filename,
  744.                         &lineno, &offset, &text))
  745.                 PyErr_Clear();
  746.             else {
  747.                 char buf[10];
  748.                 PyFile_WriteString("  File \"", f);
  749.                 if (filename == NULL)
  750.                     PyFile_WriteString("<string>", f);
  751.                 else
  752.                     PyFile_WriteString(filename, f);
  753.                 PyFile_WriteString("\", line ", f);
  754.                 sprintf(buf, "%d", lineno);
  755.                 PyFile_WriteString(buf, f);
  756.                 PyFile_WriteString("\n", f);
  757.                 if (text != NULL) {
  758.                     char *nl;
  759.                     if (offset > 0 &&
  760.                         offset == (int)strlen(text))
  761.                         offset--;
  762.                     for (;;) {
  763.                         nl = strchr(text, '\n');
  764.                         if (nl == NULL ||
  765.                             nl-text >= offset)
  766.                             break;
  767.                         offset -= (nl+1-text);
  768.                         text = nl+1;
  769.                     }
  770.                     while (*text == ' ' || *text == '\t') {
  771.                         text++;
  772.                         offset--;
  773.                     }
  774.                     PyFile_WriteString("    ", f);
  775.                     PyFile_WriteString(text, f);
  776.                     if (*text == '\0' ||
  777.                         text[strlen(text)-1] != '\n')
  778.                         PyFile_WriteString("\n", f);
  779.                     PyFile_WriteString("    ", f);
  780.                     offset--;
  781.                     while (offset > 0) {
  782.                         PyFile_WriteString(" ", f);
  783.                         offset--;
  784.                     }
  785.                     PyFile_WriteString("^\n", f);
  786.                 }
  787.                 Py_INCREF(message);
  788.                 Py_DECREF(v);
  789.                 v = message;
  790.                 /* Can't be bothered to check all those
  791.                    PyFile_WriteString() calls */
  792.                 if (PyErr_Occurred())
  793.                     err = -1;
  794.             }
  795.         }
  796.         if (err) {
  797.             /* Don't do anything else */
  798.         }
  799.         else if (PyClass_Check(exception)) {
  800.             PyClassObject* exc = (PyClassObject*)exception;
  801.             PyObject* className = exc->cl_name;
  802.             PyObject* moduleName =
  803.                   PyDict_GetItemString(exc->cl_dict, "__module__");
  804.  
  805.             if (moduleName == NULL)
  806.                 err = PyFile_WriteString("<unknown>", f);
  807.             else {
  808.                 char* modstr = PyString_AsString(moduleName);
  809.                 if (modstr && strcmp(modstr, "exceptions")) 
  810.                 {
  811.                     err = PyFile_WriteString(modstr, f);
  812.                     err += PyFile_WriteString(".", f);
  813.                 }
  814.             }
  815.             if (err == 0) {
  816.                 if (className == NULL)
  817.                       err = PyFile_WriteString("<unknown>", f);
  818.                 else
  819.                       err = PyFile_WriteObject(className, f,
  820.                                    Py_PRINT_RAW);
  821.             }
  822.         }
  823.         else
  824.             err = PyFile_WriteObject(exception, f, Py_PRINT_RAW);
  825.         if (err == 0) {
  826.             if (v != NULL && v != Py_None) {
  827.                 PyObject *s = PyObject_Str(v);
  828.                 /* only print colon if the str() of the
  829.                    object is not the empty string
  830.                 */
  831.                 if (s == NULL)
  832.                     err = -1;
  833.                 else if (!PyString_Check(s) ||
  834.                      PyString_GET_SIZE(s) != 0)
  835.                     err = PyFile_WriteString(": ", f);
  836.                 if (err == 0)
  837.                   err = PyFile_WriteObject(s, f, Py_PRINT_RAW);
  838.                 Py_XDECREF(s);
  839.             }
  840.         }
  841.         if (err == 0)
  842.             err = PyFile_WriteString("\n", f);
  843.     }
  844.     Py_XDECREF(exception);
  845.     Py_XDECREF(v);
  846.     Py_XDECREF(tb);
  847.     /* If an error happened here, don't show it.
  848.        XXX This is wrong, but too many callers rely on this behavior. */
  849.     if (err != 0)
  850.         PyErr_Clear();
  851. }
  852.  
  853. PyObject *
  854. PyRun_String(str, start, globals, locals)
  855.     char *str;
  856.     int start;
  857.     PyObject *globals, *locals;
  858. {
  859.     return run_err_node(PyParser_SimpleParseString(str, start),
  860.                 "<string>", globals, locals);
  861. }
  862.  
  863. PyObject *
  864. PyRun_File(fp, filename, start, globals, locals)
  865.     FILE *fp;
  866.     char *filename;
  867.     int start;
  868.     PyObject *globals, *locals;
  869. {
  870.     return run_err_node(PyParser_SimpleParseFile(fp, filename, start),
  871.                 filename, globals, locals);
  872. }
  873.  
  874. static PyObject *
  875. run_err_node(n, filename, globals, locals)
  876.     node *n;
  877.     char *filename;
  878.     PyObject *globals, *locals;
  879. {
  880.     if (n == NULL)
  881.         return  NULL;
  882.     return run_node(n, filename, globals, locals);
  883. }
  884.  
  885. static PyObject *
  886. run_node(n, filename, globals, locals)
  887.     node *n;
  888.     char *filename;
  889.     PyObject *globals, *locals;
  890. {
  891.     PyCodeObject *co;
  892.     PyObject *v;
  893.     co = PyNode_Compile(n, filename);
  894.     PyNode_Free(n);
  895.     if (co == NULL)
  896.         return NULL;
  897.     v = PyEval_EvalCode(co, globals, locals);
  898.     Py_DECREF(co);
  899.     return v;
  900. }
  901.  
  902. static PyObject *
  903. run_pyc_file(fp, filename, globals, locals)
  904.     FILE *fp;
  905.     char *filename;
  906.     PyObject *globals, *locals;
  907. {
  908.     PyCodeObject *co;
  909.     PyObject *v;
  910.     long magic;
  911.     long PyImport_GetMagicNumber();
  912.  
  913.     magic = PyMarshal_ReadLongFromFile(fp);
  914.     if (magic != PyImport_GetMagicNumber()) {
  915.         PyErr_SetString(PyExc_RuntimeError,
  916.                "Bad magic number in .pyc file");
  917.         return NULL;
  918.     }
  919.     (void) PyMarshal_ReadLongFromFile(fp);
  920.     v = PyMarshal_ReadObjectFromFile(fp);
  921.     fclose(fp);
  922.     if (v == NULL || !PyCode_Check(v)) {
  923.         Py_XDECREF(v);
  924.         PyErr_SetString(PyExc_RuntimeError,
  925.                "Bad code object in .pyc file");
  926.         return NULL;
  927.     }
  928.     co = (PyCodeObject *)v;
  929.     v = PyEval_EvalCode(co, globals, locals);
  930.     Py_DECREF(co);
  931.     return v;
  932. }
  933.  
  934. PyObject *
  935. Py_CompileString(str, filename, start)
  936.     char *str;
  937.     char *filename;
  938.     int start;
  939. {
  940.     node *n;
  941.     PyCodeObject *co;
  942.     n = PyParser_SimpleParseString(str, start);
  943.     if (n == NULL)
  944.         return NULL;
  945.     co = PyNode_Compile(n, filename);
  946.     PyNode_Free(n);
  947.     return (PyObject *)co;
  948. }
  949.  
  950. /* Simplified interface to parsefile -- return node or set exception */
  951.  
  952. node *
  953. PyParser_SimpleParseFile(fp, filename, start)
  954.     FILE *fp;
  955.     char *filename;
  956.     int start;
  957. {
  958.     node *n;
  959.     perrdetail err;
  960.     Py_BEGIN_ALLOW_THREADS
  961.     n = PyParser_ParseFile(fp, filename, &_PyParser_Grammar, start,
  962.                 (char *)0, (char *)0, &err);
  963.     Py_END_ALLOW_THREADS
  964.     if (n == NULL)
  965.         err_input(&err);
  966.     return n;
  967. }
  968.  
  969. /* Simplified interface to parsestring -- return node or set exception */
  970.  
  971. node *
  972. PyParser_SimpleParseString(str, start)
  973.     char *str;
  974.     int start;
  975. {
  976.     node *n;
  977.     perrdetail err;
  978.     n = PyParser_ParseString(str, &_PyParser_Grammar, start, &err);
  979.     if (n == NULL)
  980.         err_input(&err);
  981.     return n;
  982. }
  983.  
  984. /* Set the error appropriate to the given input error code (see errcode.h) */
  985.  
  986. static void
  987. err_input(err)
  988.     perrdetail *err;
  989. {
  990.     PyObject *v, *w;
  991.     char *msg = NULL;
  992.     v = Py_BuildValue("(ziiz)", err->filename,
  993.                 err->lineno, err->offset, err->text);
  994.     if (err->text != NULL) {
  995.         free(err->text);
  996.         err->text = NULL;
  997.     }
  998.     switch (err->error) {
  999.     case E_SYNTAX:
  1000.         msg = "invalid syntax";
  1001.         break;
  1002.     case E_TOKEN:
  1003.         msg = "invalid token";
  1004.  
  1005.         break;
  1006.     case E_INTR:
  1007.         PyErr_SetNone(PyExc_KeyboardInterrupt);
  1008.         return;
  1009.     case E_NOMEM:
  1010.         PyErr_NoMemory();
  1011.         return;
  1012.     case E_EOF:
  1013.         msg = "unexpected EOF while parsing";
  1014.         break;
  1015.     case E_INDENT:
  1016.         msg = "inconsistent use of tabs and spaces in indentation";
  1017.         break;
  1018.     default:
  1019.         fprintf(stderr, "error=%d\n", err->error);
  1020.         msg = "unknown parsing error";
  1021.         break;
  1022.     }
  1023.     w = Py_BuildValue("(sO)", msg, v);
  1024.     Py_XDECREF(v);
  1025.     PyErr_SetObject(PyExc_SyntaxError, w);
  1026.     Py_XDECREF(w);
  1027. }
  1028.  
  1029. /* Print fatal error message and abort */
  1030.  
  1031. void
  1032. Py_FatalError(msg)
  1033.     char *msg;
  1034. {
  1035.     fprintf(stderr, "Fatal Python error: %s\n", msg);
  1036. #ifdef macintosh
  1037.     for (;;);
  1038. #endif
  1039. #ifdef MS_WIN32
  1040.     OutputDebugString("Fatal Python error: ");
  1041.     OutputDebugString(msg);
  1042.     OutputDebugString("\n");
  1043. #endif
  1044.     abort();
  1045. }
  1046.  
  1047. /* Clean up and exit */
  1048.  
  1049. #ifdef WITH_THREAD
  1050. #include "thread.h"
  1051. int _PyThread_Started = 0; /* Set by threadmodule.c and maybe others */
  1052. #endif
  1053.  
  1054. #define NEXITFUNCS 32
  1055. static void (*exitfuncs[NEXITFUNCS]) Py_PROTO((void));
  1056. static int nexitfuncs = 0;
  1057.  
  1058. int Py_AtExit(func)
  1059.     void (*func) Py_PROTO((void));
  1060. {
  1061.     if (nexitfuncs >= NEXITFUNCS)
  1062.         return -1;
  1063.     exitfuncs[nexitfuncs++] = func;
  1064.     return 0;
  1065. }
  1066.  
  1067. static void
  1068. call_sys_exitfunc()
  1069. {
  1070.     PyObject *exitfunc = PySys_GetObject("exitfunc");
  1071.  
  1072.     if (exitfunc) {
  1073.         PyObject *res, *f;
  1074.         Py_INCREF(exitfunc);
  1075.         PySys_SetObject("exitfunc", (PyObject *)NULL);
  1076.         f = PySys_GetObject("stderr");
  1077.         res = PyEval_CallObject(exitfunc, (PyObject *)NULL);
  1078.         if (res == NULL) {
  1079.             if (f)
  1080.                 PyFile_WriteString("Error in sys.exitfunc:\n", f);
  1081.             PyErr_Print();
  1082.         }
  1083.         Py_DECREF(exitfunc);
  1084.     }
  1085.  
  1086.     if (Py_FlushLine())
  1087.         PyErr_Clear();
  1088. }
  1089.  
  1090. static void
  1091. call_ll_exitfuncs()
  1092. {
  1093.     while (nexitfuncs > 0)
  1094.         (*exitfuncs[--nexitfuncs])();
  1095.  
  1096.     fflush(stdout);
  1097.     fflush(stderr);
  1098. }
  1099.  
  1100. #ifdef COUNT_ALLOCS
  1101. extern void dump_counts Py_PROTO((void));
  1102. #endif
  1103.  
  1104. void
  1105. Py_Exit(sts)
  1106.     int sts;
  1107. {
  1108.     Py_Finalize();
  1109.  
  1110. #ifdef macintosh
  1111.     PyMac_Exit(sts);
  1112. #else
  1113.     exit(sts);
  1114. #endif
  1115. }
  1116.  
  1117. static void
  1118. initsigs()
  1119. {
  1120. #ifdef HAVE_SIGNAL_H
  1121. #ifdef SIGPIPE
  1122.     signal(SIGPIPE, SIG_IGN);
  1123. #endif
  1124. #endif /* HAVE_SIGNAL_H */
  1125.     PyOS_InitInterrupts(); /* May imply initsignal() */
  1126. }
  1127.  
  1128. #ifdef Py_TRACE_REFS
  1129. /* Ask a yes/no question */
  1130.  
  1131. int
  1132. _Py_AskYesNo(prompt)
  1133.     char *prompt;
  1134. {
  1135.     char buf[256];
  1136.     
  1137.     printf("%s [ny] ", prompt);
  1138.     if (fgets(buf, sizeof buf, stdin) == NULL)
  1139.         return 0;
  1140.     return buf[0] == 'y' || buf[0] == 'Y';
  1141. }
  1142. #endif
  1143.  
  1144. #ifdef MPW
  1145.  
  1146. /* Check for file descriptor connected to interactive device.
  1147.    Pretend that stdin is always interactive, other files never. */
  1148.  
  1149. int
  1150. isatty(fd)
  1151.     int fd;
  1152. {
  1153.     return fd == fileno(stdin);
  1154. }
  1155.  
  1156. #endif
  1157.  
  1158. /*
  1159.  * The file descriptor fd is considered ``interactive'' if either
  1160.  *   a) isatty(fd) is TRUE, or
  1161.  *   b) the -i flag was given, and the filename associated with
  1162.  *      the descriptor is NULL or "<stdin>" or "???".
  1163.  */
  1164. int
  1165. Py_FdIsInteractive(fp, filename)
  1166.     FILE *fp;
  1167.     char *filename;
  1168. {
  1169.     if (isatty((int)fileno(fp)))
  1170.         return 1;
  1171.     if (!Py_InteractiveFlag)
  1172.         return 0;
  1173.     return (filename == NULL) ||
  1174.            (strcmp(filename, "<stdin>") == 0) ||
  1175.            (strcmp(filename, "???") == 0);
  1176. }
  1177.